home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
C
/
LIB
/
OSLIB
/
EXAMPLES
/
h
/
wimpmsg
< prev
next >
Wrap
Text File
|
1995-03-23
|
643b
|
36 lines
#ifndef wimpmsg_H
#define wimpmsg_H
/* Title: wimpmsg.c
* Purpose: functions for wimp message handling
* Author: IDJ
* History: 19-Jun-94: IDJ: created
*
*/
#ifndef os_H
#include "os.h"
#endif
#ifndef wimp_H
#include "wimp.h"
#endif
#ifndef toolbox_H
#include "toolbox.h"
#endif
#ifndef event_H
#include "event.h"
#endif
extern void wimpmsg_dispatch (wimp_block *block, toolbox_block *id_block);
extern void wimpmsg_register_message_handler (int msg_no,
event_message_handler *handler, void *handle);
extern void wimpmsg_deregister_message_handler (int msg_no,
event_message_handler *handler, void *handle);
#endif